home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / MacGambit 2.0 / sources1 / Runtime (.c & .h) / ext.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-04  |  383 b   |  22 lines  |  [TEXT/KAHL]

  1. /* Operating system specific extensions */
  2.  
  3.  
  4. #include "params.h"
  5. #include "gambit.h"
  6. #include "struct.h"
  7.  
  8.  
  9. /*---------------------------------------------------------------------------*/
  10.  
  11. #ifdef unix
  12. #include "ext_unix.c"
  13. #else
  14. #ifdef mac
  15. #include "ext_mac.c"
  16. #else
  17. #include "ext_ansi.c"
  18. #endif
  19. #endif
  20.  
  21. /*---------------------------------------------------------------------------*/
  22.